home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr13 / afv95.zip / KBD.H < prev    next >
C/C++ Source or Header  |  1995-02-12  |  3KB  |  107 lines

  1. #ifndef KBD_H
  2. #define KBD_H    1
  3.  
  4. #include "utype.h"
  5.  
  6. #define KB_SHF_TAB    0x0f00
  7. #define KB_ALT_Q        0x1000
  8. #define KB_ALT_W        0x1100
  9. #define KB_ALT_E        0x1200
  10. #define KB_ALT_R        0x1300
  11. #define KB_ALT_T        0x1400
  12. #define KB_ALT_Y        0x1500
  13. #define KB_ALT_U        0x1600
  14. #define KB_ALT_I        0x1700
  15. #define KB_ALT_O        0x1800
  16. #define KB_ALT_P        0x1900
  17. #define KB_ALT_A        0x1e00
  18. #define KB_ALT_S        0x1f00
  19. #define KB_ALT_D        0x2000
  20. #define KB_ALT_F        0x2100
  21. #define KB_ALT_G        0x2200
  22. #define KB_ALT_H        0x2300
  23. #define KB_ALT_J        0x2400
  24. #define KB_ALT_K        0x2500
  25. #define KB_ALT_L        0x2600
  26. #define KB_ALT_Z        0x2c00
  27. #define KB_ALT_X        0x2d00
  28. #define KB_ALT_C        0x2e00
  29. #define KB_ALT_V        0x2f00
  30. #define KB_ALT_B        0x3000
  31. #define KB_ALT_N        0x3100
  32. #define KB_ALT_M        0x3200
  33. #define KB_F1            0x3b00
  34. #define KB_F2            0x3c00
  35. #define KB_F3            0x3d00
  36. #define KB_F4            0x3e00
  37. #define KB_F5            0x3f00
  38. #define KB_F6            0x4000
  39. #define KB_F7            0x4100
  40. #define KB_F8            0x4200
  41. #define KB_F9            0x4300
  42. #define KB_F10            0x4400
  43. #define KB_HOME        0x4700
  44. #define KB_CURS_UP    0x4800
  45. #define KB_PAGE_UP    0x4900
  46. #define KB_G_MINUS    0x4a00
  47. #define KB_CURS_LF    0x4b00
  48. #define KB_G_5            0x4c00
  49. #define KB_CURS_RT    0x4d00
  50. #define KB_G_PLUS        0x4e00
  51. #define KB_END            0x4f00
  52. #define KB_CURS_DN    0x5000
  53. #define KB_PAGE_DN    0x5100
  54. #define KB_INS            0x5200
  55. #define KB_DEL            0x5300
  56. #define KB_SHF_F1        0x5400
  57. #define KB_SHF_F2        0x5500
  58. #define KB_SHF_F3        0x5600
  59. #define KB_SHF_F4        0x5700
  60. #define KB_SHF_F5        0x5800
  61. #define KB_SHF_F6        0x5900
  62. #define KB_SHF_F7        0x5a00
  63. #define KB_SHF_F8        0x5b00
  64. #define KB_SHF_F9        0x5c00
  65. #define KB_SHF_F10    0x5d00
  66. #define KB_CTL_F1        0x5e00
  67. #define KB_CTL_F2        0x5f00
  68. #define KB_CTL_F3        0x6000
  69. #define KB_CTL_F4        0x6100
  70. #define KB_CTL_F5        0x6200
  71. #define KB_CTL_F6        0x6300
  72. #define KB_CTL_F7        0x6400
  73. #define KB_CTL_F8        0x6500
  74. #define KB_CTL_F9        0x6600
  75. #define KB_CTL_F10    0x6700
  76. #define KB_ALT_F1        0x6800
  77. #define KB_ALT_F2        0x6900
  78. #define KB_ALT_F3        0x6a00
  79. #define KB_ALT_F4        0x6b00
  80. #define KB_ALT_F5        0x6c00
  81. #define KB_ALT_F6        0x6d00
  82. #define KB_ALT_F7        0x6e00
  83. #define KB_ALT_F8        0x6f00
  84. #define KB_ALT_F9        0x7000
  85. #define KB_ALT_F10    0x7100
  86. #define KB_CTL_PRTSC    0x7200
  87. #define KB_CTL_LF        0x7300
  88. #define KB_CTL_RT        0x7400
  89. #define KB_CTL_END    0x7500
  90. #define KB_CTL_PGDN    0x7600
  91. #define KB_CTL_HOME    0x7700
  92. #define KB_ALT_1        0x7800
  93. #define KB_ALT_2        0x7900
  94. #define KB_ALT_3        0x7a00
  95. #define KB_ALT_4        0x7b00
  96. #define KB_ALT_5        0x7c00
  97. #define KB_ALT_6        0x7d00
  98. #define KB_ALT_7        0x7e00
  99. #define KB_ALT_8        0x7f00
  100. #define KB_ALT_9        0x8000
  101. #define KB_ALT_0        0x8100
  102. #define KB_ALT_DASH    0x8200
  103. #define KB_ALT_EQU    0x8300
  104. #define KB_CTL_PGUP    0x8400
  105.  
  106. #endif
  107.